
body {
    background-image: url("../images/login4.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    font-family: 'Roboto', sans-serif;
  }
  
  .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
  }
  
  .header-logo img {
    height: 40px;
    
  }

  .header-cta a {
    background-color: #F9550E;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    
    cursor: pointer;
    text-decoration: none;
   
    font-weight: 600;
  }

  .header-cta a:hover {
    background-color: #ffffff;
    color: #F9550E;
    border: 2px solid #F9550E;
  }
  
  .main {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 500px;
  }
  
  .login-content {
    background-color: #fff;
    padding: 40px;
    text-align: center;
    max-width: 300px;
    height: 400px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.438);
    border-radius: 10px;
  }
  
  .login-content h2 {
    font-size: 24px;
    margin-bottom: 10px;
  }
  
  .login-content p {
    margin-bottom: 30px;
  }
  
  .login-form input,
  .login-form button {
    display: block;
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    box-sizing: border-box;
  }
  
  .login-form button {
    background-color: #F9550E;
    color: #ffffff;
    border: none;
    padding: 10px 0;
    border-radius: 2px;
    cursor: pointer;
    font-weight: 600;
    font-size: 20px;
    margin-top: 60px;
  }
  
  .login-form button:hover {
    background-color: #ffffff;
    color: #F9550E;
    border: 2px solid #F9550E;
  }



  .login-form p {
    margin-top: 10px;
    font-size: 14px;
  }
  
  .login-form a {
    color: #242523;
    text-decoration: underline;
    
  }
  
  .footer {
    text-align: center;
    padding: 20px;
    color: #000000;
    font-weight: 600;
  }
  


  
/* Media Query for Mobile */
@media (max-width: 767px) {
   
  .main {
   
    height: 100vh;
  }
   
    .header {
      flex-direction: row;
      align-items: center;
    }
  
    .header-cta {
      margin-top: 10px;
    }
  
    .login-content {
      height: 400px;
      padding: 20px;
      margin-bottom: 250px;
    }
  
    .login-content h2 {
      font-size: 30px;
    }
  
    .login-form input,
    .login-form button {
      margin-bottom: 15px;
    }

    .login-form button {
      
      margin-top: 80px;
    }
  
    .footer {
      font-size: 14px;
    }
  }